|
|||||||||||||||||||
This license of Clover is provided to support the development of Flock only. Please visit http://www.thecortex.net/clover to obtain a licensed version of Clover. | |||||||||||||||||||
Source file | Conditionals | Statements | Methods | TOTAL | |||||||||||||||
MyTree.java | - | 0% | 0% | 0% |
|
1 |
package net.sf.flock.webapp.tree; |
|
2 |
|
|
3 |
import net.sf.tapestry.IMarkupWriter; |
|
4 |
import net.sf.tapestry.IRequestCycle; |
|
5 |
import net.sf.tapestry.RequestCycleException; |
|
6 |
|
|
7 |
/** |
|
8 |
* @version $Revision: 1.8 $ |
|
9 |
* @author $Author: phraktle $ |
|
10 |
*/ |
|
11 |
public class MyTree extends Tree { |
|
12 |
|
|
13 |
|
|
14 | 0 |
protected void enterNode(IMarkupWriter writer, IRequestCycle cycle) throws RequestCycleException { |
15 | 0 |
writer.begin("li"); |
16 |
} |
|
17 |
|
|
18 | 0 |
protected void leaveNode(IMarkupWriter writer, IRequestCycle cycle) throws RequestCycleException { |
19 | 0 |
writer.end(); |
20 |
} |
|
21 |
|
|
22 | 0 |
protected void enterChildren(IMarkupWriter writer, IRequestCycle cycle) throws RequestCycleException { |
23 | 0 |
writer.begin("ul"); |
24 |
} |
|
25 |
|
|
26 | 0 |
protected void leaveChildren(IMarkupWriter writer, IRequestCycle cycle) throws RequestCycleException { |
27 | 0 |
writer.end(); |
28 |
} |
|
29 |
|
|
30 |
} |
|
31 |
|
|